home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Griffith 0.9.8 / griffith-0.9.8-win32.exe / {app} / README < prev    next >
Text File  |  2008-11-17  |  3KB  |  124 lines

  1. Griffith 0.9.8 README
  2. =====================
  3.  
  4. This document was last updated on Thu Sep 02 2007.
  5. Please see the file COPYING for licensing and warranty information.
  6. The latest version of this software is available at the following URL:
  7. http://www.griffith.cc/
  8.  
  9.  
  10. Table of Contents
  11. =================
  12.  
  13. * Introduction
  14. * System Requirements
  15. * Installation
  16. * Reporting Bugs
  17. * TODO list
  18. * About the Authors
  19.  
  20.  
  21. Introduction
  22. ============
  23.  
  24. Griffith is a film collection manager, released under the GNU/GPL License.
  25.  
  26.  
  27. System Requirements
  28. ===================
  29.  
  30.   Name            Minimum version        URL                        NOTE
  31.   ----            ---------------        ---                        ----
  32.   * Python        2.3 or higher        http://www.python.org/
  33.   * GTK+        tested on 2.6.4        http://www.gtk.org/
  34.   * PyGTK (with glade2)    tested on 2.6.1        http://www.pygtk.org/
  35.   * SQLAlchemy        0.3.10            http://www.sqlalchemy.org/            0.4 is not supported yet (0.3.11 is included in Griffith 0.9.8)
  36.   * pysqlite2        2            http://initd.org/tracker/pysqlite        Python 2.5's sqlite3 module will be used if available
  37.   * PIL                        http://www.pythonware.com/products/pil/
  38.   * PyXML                    http://pyxml.sf.net/
  39.   * ReportLab        1.19            http://www.reportlab.org
  40.  
  41. Other (optional) dependencies:
  42. ------------------------------
  43.  
  44.   PostgreSQL support:
  45.   * Psycopg2        2            http://initd.org/tracker/psycopg/wiki/PsycopgTwo
  46.   MySQL support:
  47.   * MySQLDb                    http://sourceforge.net/projects/mysql-python
  48.   Upgrading from Griffith <=0.6.2 (only if pysqlite 1.0 was used before, 1.1 is not needed)
  49.   * pysqlite        1.0             http://initd.org/tracker/pysqlite
  50.   Encoding detection of imported CSV file support:
  51.   * chardet                    http://chardet.feedparser.org/
  52.   Gtkspell:
  53.   * python-gnome-extras
  54.   Covers and reports support:
  55.   * PDF reader
  56.  
  57. To check dependencies:
  58. ----------------------
  59.   $ ./griffith --check-dep
  60.  
  61. To show detected Python modules versions:
  62. -----------------------------------------
  63.   $ ./griffith --show-dep
  64.  
  65. Windows installer includes all the needed requirements.
  66. A GTK+ runtime is not necessary when using this installer.
  67.  
  68.  
  69. External databases
  70. ==================
  71.  
  72. You need to prepare a new database and a new user by yourself
  73.  
  74. PostgreSQL
  75. ----------
  76.  
  77.     CREATE USER griffith UNENCRYPTED PASSWORD 'gRiFiTh' NOCREATEDB NOCREATEUSER;
  78.     CREATE DATABASE griffith WITH OWNER = griffith ENCODING = 'UNICODE';
  79.     GRANT ALL ON DATABASE griffith TO griffith;
  80.  
  81. MySQL
  82. -----
  83.  
  84.     CREATE DATABASE `griffith` DEFAULT CHARACTER SET utf8;
  85.     CREATE USER 'griffith'@'localhost' IDENTIFIED BY 'gRiFiTh';
  86.     CREATE USER 'griffith'@'%' IDENTIFIED BY 'gRiFiTh';
  87.     GRANT ALL ON `griffith` . * TO 'griffith'@'localhost';
  88.     GRANT ALL ON `griffith` . * TO 'griffith'@'%';
  89.  
  90. Microsoft SQL Server
  91. --------------------
  92.     CREATE DATABASE griffith
  93.     EXEC sp_addlogin @loginame='griffith', @passwd='gRiFiTh', @defdb='griffith'
  94.     GO
  95.     USE griffith
  96.     EXEC sp_changedbowner @loginame='griffith'
  97.  
  98.  
  99. Installation
  100. ============
  101.  
  102. See INSTALL file
  103.  
  104.  
  105. Reporting Bugs                                        
  106. ==============
  107.     
  108. If you want to help or report any bugs founded please visit:
  109.   http://www.griffith.cc/
  110. or
  111.   https://bugs.launchpad.net/griffith/
  112.  
  113.  
  114. TODO
  115. ====
  116.  
  117. See TODO file
  118.  
  119.  
  120. About the Authors
  121. =================
  122.  
  123. See AUTHORS file
  124.